crypto/internal/fips140/sha512.Digest.h (field)

73 uses

	crypto/internal/fips140/sha512 (current package)
		sha512.go#L72: 	h    [8]uint64
		sha512.go#L82: 		d.h[0] = init0_384
		sha512.go#L83: 		d.h[1] = init1_384
		sha512.go#L84: 		d.h[2] = init2_384
		sha512.go#L85: 		d.h[3] = init3_384
		sha512.go#L86: 		d.h[4] = init4_384
		sha512.go#L87: 		d.h[5] = init5_384
		sha512.go#L88: 		d.h[6] = init6_384
		sha512.go#L89: 		d.h[7] = init7_384
		sha512.go#L91: 		d.h[0] = init0_224
		sha512.go#L92: 		d.h[1] = init1_224
		sha512.go#L93: 		d.h[2] = init2_224
		sha512.go#L94: 		d.h[3] = init3_224
		sha512.go#L95: 		d.h[4] = init4_224
		sha512.go#L96: 		d.h[5] = init5_224
		sha512.go#L97: 		d.h[6] = init6_224
		sha512.go#L98: 		d.h[7] = init7_224
		sha512.go#L100: 		d.h[0] = init0_256
		sha512.go#L101: 		d.h[1] = init1_256
		sha512.go#L102: 		d.h[2] = init2_256
		sha512.go#L103: 		d.h[3] = init3_256
		sha512.go#L104: 		d.h[4] = init4_256
		sha512.go#L105: 		d.h[5] = init5_256
		sha512.go#L106: 		d.h[6] = init6_256
		sha512.go#L107: 		d.h[7] = init7_256
		sha512.go#L109: 		d.h[0] = init0
		sha512.go#L110: 		d.h[1] = init1
		sha512.go#L111: 		d.h[2] = init2
		sha512.go#L112: 		d.h[3] = init3
		sha512.go#L113: 		d.h[4] = init4
		sha512.go#L114: 		d.h[5] = init5
		sha512.go#L115: 		d.h[6] = init6
		sha512.go#L116: 		d.h[7] = init7
		sha512.go#L149: 	b = byteorder.BEAppendUint64(b, d.h[0])
		sha512.go#L150: 	b = byteorder.BEAppendUint64(b, d.h[1])
		sha512.go#L151: 	b = byteorder.BEAppendUint64(b, d.h[2])
		sha512.go#L152: 	b = byteorder.BEAppendUint64(b, d.h[3])
		sha512.go#L153: 	b = byteorder.BEAppendUint64(b, d.h[4])
		sha512.go#L154: 	b = byteorder.BEAppendUint64(b, d.h[5])
		sha512.go#L155: 	b = byteorder.BEAppendUint64(b, d.h[6])
		sha512.go#L156: 	b = byteorder.BEAppendUint64(b, d.h[7])
		sha512.go#L179: 	b, d.h[0] = consumeUint64(b)
		sha512.go#L180: 	b, d.h[1] = consumeUint64(b)
		sha512.go#L181: 	b, d.h[2] = consumeUint64(b)
		sha512.go#L182: 	b, d.h[3] = consumeUint64(b)
		sha512.go#L183: 	b, d.h[4] = consumeUint64(b)
		sha512.go#L184: 	b, d.h[5] = consumeUint64(b)
		sha512.go#L185: 	b, d.h[6] = consumeUint64(b)
		sha512.go#L186: 	b, d.h[7] = consumeUint64(b)
		sha512.go#L289: 	byteorder.BEPutUint64(digest[0:], d.h[0])
		sha512.go#L290: 	byteorder.BEPutUint64(digest[8:], d.h[1])
		sha512.go#L291: 	byteorder.BEPutUint64(digest[16:], d.h[2])
		sha512.go#L292: 	byteorder.BEPutUint64(digest[24:], d.h[3])
		sha512.go#L293: 	byteorder.BEPutUint64(digest[32:], d.h[4])
		sha512.go#L294: 	byteorder.BEPutUint64(digest[40:], d.h[5])
		sha512.go#L296: 		byteorder.BEPutUint64(digest[48:], d.h[6])
		sha512.go#L297: 		byteorder.BEPutUint64(digest[56:], d.h[7])
		sha512block.go#L98: 	h0, h1, h2, h3, h4, h5, h6, h7 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7]
		sha512block.go#L143: 	dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4], dig.h[5], dig.h[6], dig.h[7] = h0, h1, h2, h3, h4, h5, h6, h7